| 1234567891011 |
- import FilesExplorer from "@/components/explorer/levels/FilesExplorer";
- /**
- * /:branch/:year/:month/:day
- *
- * Explorer leaf: lists files for the selected day.
- */
- export default async function BranchYearMonthDayPage({ params }) {
- const { branch, year, month, day } = await params;
- return <FilesExplorer branch={branch} year={year} month={month} day={day} />;
- }
|